home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 8: LINUX Games / Linux Cubed Series 8 - LINUX Games.iso / games / x11 / rpg / crossfir.001 / crossfir~ / eutl / debuglib / test1.c < prev   
C/C++ Source or Header  |  1994-09-19  |  539b  |  27 lines

  1. #include "debuglib.h"
  2.  
  3. main(int argc,char *argv[])
  4. {
  5.   mal_debug(3);
  6.   printf("begin\n");
  7.   GetDebuggingArguments(&argc,argv);
  8.   DEBUG("test:test:test",1,
  9.     ("test:test:test;1\n"));
  10.   DEBUG("testa:testb:testc",1,
  11.     ("testa:testb:testc;1\n"));
  12.   QDEBUG("testb:testa:testc",1,
  13.     ("testb:testa:testc;1\n"));
  14.   QDEBUG("testb:testa",1,
  15.     ("testb:testa;1\n"));
  16.   QDEBUG("testb:testa",2,
  17.     ("testb:testa;2\n"));
  18.   DEBUG("testb:testb",4,
  19.     ("testb:testb;4\n"));
  20.   DEBUG("test:testb:test",2,
  21.     ("test:testb:test;2\n"));
  22.   printf("end\n");
  23.   exit(0);
  24. }
  25.  
  26.     
  27.